home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 2000 January
/
Macworld (2000-01).dmg
/
Serious Software
/
PageSentry 2.5.2 Pro CD demo
/
Sample AppleScripts
/
RecyclePower
< prev
next >
Wrap
Text File
|
1996-02-11
|
521b
|
20 lines
on pause(length)
local endTime
set endTime to (current date) + length
repeat while (current date) < endTime
end repeat
end pause
--- PageSentry Notification Applet
--- Recycle the power with a PowerKey
on «event SENTfail» sentryName given «class FURL»:failedURL, «class XTRA»:extra, «class STAT»:Status
tell application "PowerKey™ Extension"
set level of outlet 2 of unit 1 to 0
end tell
pause(10)
tell application "PowerKey™ Extension"
set level of outlet 2 of unit 1 to 100
end tell
end «event SENTfail»